home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / Real / wfmhcybergfx_key.h < prev    next >
C/C++ Source or Header  |  1997-11-26  |  581b  |  44 lines

  1.  
  2. #include <exec/types.h>
  3. #include <exec/tasks.h>
  4. #include <exec/nodes.h>
  5. #include <intuition/intuition.h>
  6. #include <intuition/screens.h>
  7.  
  8.  
  9. struct KeyBase
  10. {
  11.     ULONG pad[20];
  12.     int dither_type;
  13. };
  14.  
  15. struct UserInfo
  16. {
  17.     int number;
  18.     char *name;
  19.     char *street;
  20.     char *city;
  21.     char *country;
  22.     int sum;
  23. };
  24.  
  25. struct R3DHandle
  26. {
  27.     struct Node h_node;
  28.     struct Screen *RenderScr;
  29.     struct Window *wnd;
  30.     UBYTE depth;
  31.     UWORD size_x, size_y;
  32.     struct Task *task;
  33.     SHORT *line;
  34.     int line_width;
  35. };
  36.  
  37.  
  38. /* dithering types for SetDitherType() */
  39.  
  40. #define DT_FS                0
  41. #define DT_ORDERED    1
  42. #define DT_NONE            2
  43.  
  44.